* {
  margin: 0;
  padding: 0;
}

body {
  background: var(--grey);
  font-family: arial, sans-serif, "Microsoft Yahei";
  font-size: 16px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  max-width: 100%;
}

label {
  font-weight: initial;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
  color: inherit;
}

/*已经访问过的链接*/
a:visited {
  text-decoration: none;
  color: inherit;
}

/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
  color: inherit;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
  color: inherit;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
  color: inherit;
}

div {
  box-sizing: border-box;
}

:root {
  --main-color: #bf0022;
  --main-bg-color: #bf0022;
  --grey: #f8f8f8;
  --white: #fff;
}

input,
select,
textarea {
  border: none;
  font-family: '微软雅黑';
}

li {
  list-style: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.content {
  min-height: auto;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.fixed {
  /* 兼容chorme */
  position: -webkit-fixed;
  position: fixed;
  top: 0px;
  margin: 0 auto;
  width: 100%;
  z-index: 5;
}

.one-line {
  /* white-space: nowrap; */
  /* 不换行 */
  /* overflow: hidden; */
  /* 溢出隐藏 */
  /* text-overflow: ellipsis; */
  /* 超出显示省略号 */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.twoLine {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.threeLine {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.noscroll {
  /* height: 100%; */
  overflow: hidden;
}

#pop-up {
  min-width: 300px !important;
  width: fit-content;
  padding: 20px !important;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: none;
  min-height: 20px;
  z-index: 9999999;
  border-radius: 10px;
  white-space: normal;
  box-sizing: border-box;
}

#app,
.grey {
  background: var(--grey);
}

.centerWidth {
  width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .centerWidth {
    width: 1200px;
    margin: 0 auto;
  }
}

.flex {
  display: flex;
}

.none {
  text-align: center;
  padding: 20px 0;
}

.typeList {
  /* display: flex; */
  /*  align-items: center;
  justify-content: flex-start; */
  flex-wrap: wrap;
  display: inline-block;
  margin-right: 5px;
}

.typeList span {
  font-size: 12px;
  /* line-height: 18px; */
  line-height: initial;
  padding: 2px 8px;
  border-radius: 10px;
  background: #ff812a;
  color: #fff;
  display: flex;
  align-items: center;
  /* margin-bottom: 5px; */
}

.typeList span img {
  width: auto;
  height: 12px;
  vertical-align: top;
  margin-right: 4px;
  object-fit: contain;
}

.typeList span:not(:last-child) {
  margin-right: 5px;
}

.amplify {
  transition: transform 0.5s ease-out;
}

.amplify:hover {
  transform: scale(1.1);
}

/* 头部 START */
.header .grey>.flex {
  justify-content: space-between;
  height: 40px;
  line-height: 40px;
  color: #666;
  font-size: 13px;
}

.header .grey>.flex .red {
  color: var(--main-color);
}

.header .grey>.flex .applet {
  position: relative;
}

.header .grey>.flex .applet .image {
  width: 110px;
  height: 110px;
  display: none;
  position: absolute;
  top: 100%;
  right: calc(50% - 55px);
  z-index: 1;
}

.header .grey>.flex .applet:hover .image {
  display: block;
}

.header .grey .flex .welcome {
  font-weight: 400;
  display: flex;
  align-items: center
}

.header .grey .flex .welcome p {
  max-width: 273px;
  margin: 0;
}

.header .grey .flex .right {
  justify-content: flex-end;
}

.header .grey .flex .right>div:hover {
  color: var(--main-color);
}

.header .grey .flex .right>div {
  cursor: pointer;
  position: relative;
  margin-left: 12px;
  padding-left: 12px;
}

.header .grey .flex .right>div a {
  display: inline-block;
}

.header .grey .flex .right>div>img {
  width: 20px;
  height: 15px;
  object-fit: contain;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -4px;
}

.header .grey .flex .right>div:first-child {
  padding-left: 0px;
  margin-left: 0px;
}

.header .grey .flex .right>div::before {
  content: "";
  width: 1px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #999;
}

.header .grey .flex .right>div:first-child:before {
  display: none;
}

.header .white {
  background: var(--white);
}

.header .headerBT {
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  align-items: flex-start;
  padding-bottom: 10px;
}

.header .headerBT .logo {
  /* height: 35px; */
  width: auto;
  /* padding-top: 5px; */
  margin-top: -12px;
}

.header .headerBT .logo a {
  display: block;
}

.header .headerBT .logo a img {
  /* width: 188px; */
  width: 236px;
  /* height: 90px; */
  height: 70px;
  object-fit: contain;
}

.header .headerBT>.right .top {
  position: relative;
  margin-top: -24px;
}

.header .headerBT>.right .top.shopTop {
  margin-top: 0;
}

.header .headerBT>.right .top .hot {
  margin-top: 10px;
  color: #999;
}

.header .headerBT>.right .top .hot img {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

.header .headerBT>.right .top .hot span {
  font-size: 12px;
  margin-right: 20px;
  cursor: pointer;
}

.header .headerBT>.right .top .hot span:nth-child(-n + 4) {
  color: var(--main-color);
}

.header .headerBT .SearchSelect {
  display: flex;
  align-items: center;
}

.header .headerBT .SearchSelect .item {
  width: 54px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}

.header .headerBT .SearchSelect .item.active {
  background-color: var(--main-color);
  color: var(--white);
  border-radius: 5px 5px 0px 0px;
}

.header .headerBT .search {
  height: 46px;
  height: 46px;
  border: 1px solid var(--main-color);
  width: 618px;
  justify-content: space-between;
  font-size: 14px;
}

/* .header .headerBT .search .select {} */
/* .header .headerBT .search .select {
  width: 80px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #F8F8F8;
  color: #999999;
} */
/* 

.header .headerBT .search .selectHeader {
  position: relative;
  width: 80px;
  height: 46px;
  line-height: 46px;
  padding: 0 15px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: left;
}

div.selectHeader i {
  position: absolute;
  height: 8px;
  width: 12px;
  background: url('../img/arrow.png') left center no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 8px;
}

.header .headerBT .search .select div.selectBody {
  display: none;
  width: 100%;
  background: var(--grey);
  border-top: none;
  z-index: 11;
  position: relative;
  left: -1px;
  top: -1px;
}

.header .headerBT .search .select div.selectBody li {
  cursor: pointer;
}

.header .headerBT .search .select div.selectBody .active {
  background-color: var(--main-color);
  color: var(--white);
}

.header .headerBT .search .select:hover .selectBody {
  display: block;
} */

/* .header .headerBT .search select option {
  height: 46px;
  line-height: 46px;
} */

.header .headerBT .search .input {
  width: calc(100% - 70px);
  border: none;
  background: none;
  padding-left: 15px;
}

.header .headerBT .search.shopSearchBox .input {
  padding-left: 20px;
}

.header .headerBT .search .button {
  width: 67px;
  height: 45px;
  line-height: 45px;
  background: var(--main-color);
  text-align: center;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
}

.header .headerBT .search .button.allSearch {
  width: 100px;
}

.header .headerBT .shopSearch {
  width: 100px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  margin-left: 10px;
  margin-right: 20px;
  font-size: 14px;
}

.header .headerBT .search .button img {
  width: 21px;
  height: 21px;
  margin: 0 auto;
  vertical-align: middle;
}

.header .headerBT>.right .top .history {
  position: absolute;
  background: #fff;
  width: 100%;
  left: 0;
  top: 70px;
  padding: 10px;
  border: 1px solid var(--main-color);
  border-top: 0;
  display: none;
  z-index: 9;
}

.header .headerBT>.right .top .history .none {
  display: none;
  height: 200px;
}

.header .headerBT>.right .top .history .title {
  justify-content: space-between;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  /* font-weight: bolder; */
  margin-bottom: 10px;
}

.header .headerBT>.right .top .history .title img {
  cursor: pointer;
  width: 15px;
  height: 17px;
}

.header .headerBT>.right .top .history .list {
  max-height: 200px;
  overflow-y: auto;
}

.header .headerBT>.right .top .history .list::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

.header .headerBT>.right .top .history .list::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #BE0022;
}

.header .headerBT>.right .top .history .list::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.header .headerBT>.right .top .history .list .listbox {
  height: auto;
}

.header .headerBT>.right .top .history .list li {
  line-height: 32px;
  color: #666666;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.header .headerBT>.right .top .history .list li a {
  display: block;
}

.header .headerBT .settle {
  width: 128px;
  text-align: center;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  margin-left: 42px;
  font-size: 14px;
}

.header .headerBT .settle a {
  display: block;
  width: 100%;
}

.header .headerBT .settle img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  vertical-align: middle;
}

.header .headerBT .buttonLogin {
  width: 128px;
  text-align: center;
  height: 46px;
  line-height: 46px;
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
  font-size: 14px;
}

.header .headerBT .buttonLogin a {
  display: block;
  width: 100%;
  height: 100%;
}

.header .headerBT .infoBox {
  margin-left: 20px;
  position: relative;
}

.header .headerBT .infoBox .totalunread {
  position: relative;
  width: fit-content;
}

.header .headerBT .infoBox p {
  margin: 0;
  padding: 0;
}

.header .headerBT .infoBox .info p:last-child {
  width: 66px;
}

.header .headerBT .infoBox .box {
  position: relative;
  box-shadow: 0px 6px 18px 0px rgba(195, 195, 195, 0.5600);
  position: absolute;
  top: 60px;
  left: -65%;
  border-radius: 12px;
  z-index: 9999;
  display: none;
  border-top: 0;
  width: auto
}

.header .headerBT .infoBox:hover .box {
  display: block;
}

.header .headerBT .infoBox .con {
  width: 160px;
  /* height: 180px; */
  padding-bottom: 8px;
  background: #FFFFFF;
  border-radius: 15px;
  padding-top: 8px;
  /* padding-right: 10px; */
}

.header .headerBT .infoBox .con-ret {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  /* background: #FFFFFF; */
  /* box-shadow: 0px 6px 18px 0px rgba(195,195,195,0.5600); */
  position: absolute;
  z-index: 999;
  left: 45%;
  top: -20px;
}

.header .headerBT .infoBox .con .con-flex {
  margin-bottom: 10px;
  font-size: 14px;
}

.header .headerBT .infoBox .con .con-flex a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;

}

.header .headerBT .infoBox .con .con-flex a>img {
  width: 18px;
  height: 18px;
}

.header .headerBT .infoBox .con p.title {
  font-weight: 400;
  color: #333333;
  width: calc(100% - 13px - 18px);
  padding-left: 10px;
}

.header .headerBT .infoBox .con .con-flex img {
  width: 13px;
  height: 13px;
  vertical-align: middle;
}

.header .headerBT .infoBox .info {
  justify-content: flex-start;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
  font-size: 14px;
}

.header .headerBT .infoBox .info a {
  display: block;
  border-radius: 23px;
  width: 46px;
  height: 46px;
  margin-right: 8px;
  position: relative;
}


.header .headerBT .infoBox .info img {
  width: 46px;
  height: 46px;
  border-radius: 23px;
}

.header .headerBT .infoBox .info a .postionStye {
  width: 65px;
  border-radius: 0;
  height: auto;
  position: absolute;
  left: -21%;
  max-width: initial;
  bottom: -8px;
}

/* 导航部分 开始 */
.navBox .directory {
  width: 236px;
  height: 44px;
  line-height: 44px;
  background: var(--main-color);
  color: #fff;
  box-sizing: border-box;
  padding-left: 15px;
  border-radius: 10px 10px 0px 0px;
}

.navBox {
  display: flex;
}

.navBox .directory img {
  width: 16px;
  height: 12px;
}

.navBox .nav {
  height: 44px;
  line-height: 44px;
  margin-left: 30px;
}

.navBox .nav span {
  margin-right: 45px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

/* .navBox .nav span a {
  color: #999;
} */

.navBox .nav span:hover:before {
  width: 20px;
  content: " ";
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: 110%;
  bottom: auto;
  position: absolute;
  background: var(--main-color);
}

.navBox .nav span:hover a {
  color: var(--main-color);
}

.navBox .nav span.activeNav a {
  color: var(--main-color);
}

.navBox .nav span.activeNav::before {
  width: 20px;
  content: " ";
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: 110%;
  bottom: auto;
  position: absolute;
  background: var(--main-color);
}

/* 导航部分结束 */

/* 面包屑导航 开始 */
.crumbs {
  margin: 30px auto;
  font-size: 14px;
  color: #666666;
}

.crumbs span {
  cursor: context-menu;

}

.crumbs span:not(:last-child)::after {
  content: " > ";
  margin: 0 5px;
}

.crumbs span:last-child {
  color: var(--main-color);
}


/* 面包屑导航  结束 */

/* 尾部 开始 */
#app-footer {
  background: #1C1C1C;
  /* padding-top: 27px; */
  /* padding-bottom: 20px; */
  margin-top: 50px;
}

#app-footer .white {
  background: #fff;
  padding: 30px 0;
}

.advertisement {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advertisement .item {
  width: 20%;
  text-align: center;
  color: #666;
  font-size: 18px;
  line-height: 33px;
}

.advertisement .item img {
  width: 46px;
  height: 46px;
  vertical-align: middle;
  margin-right: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 10px;
}

#footer img {
  width: auto;
  height: auto;
}

.footer .left {
  display: grid;
  grid-template-columns: auto auto auto 320px;
  column-gap: 70px;
  width: calc(100% - 300px);
  color: #999;
}

.footer .left .title {
  font-size: 16px;
  color: #fff;
  font-weight: bolder;
  margin-bottom: 12px;
}

.footer .left .list div {
  margin-bottom: 12px;
  font-size: 14px;
}


.footer .left .list div a {
  color: #666;
  cursor: pointer;
}

.footer .right {
  width: 270px;
  display: flex;
  justify-content: space-between;
}

.footer .right div {
  width: 110px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.footer .right div img {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
}


#footer {
  background-color: #1C1C1C;
  padding: 10px 0;
  padding-bottom: 0;
  /* margin-top: 5px; */
  position: relative;
}

#footer::before {
  content: ' ';
  width: 100%;
  height: 1px;
  background: #373B4F;
  position: absolute;
  top: 0;
  left: 0;
}

#footer .flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer p {
  text-align: center;
  width: fit-content;
  color: #999999;
  margin: 0;
}

#footer span {
  padding: 0 10px;
  color: #999999;
  font-size: 12px;
}

#footer p:nth-child(1),
#footer p:nth-child(3) {
  font-size: 12px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  line-height: 30px;
}

#footer p.red {
  color: #EF3E4F;
  /* font-weight: bold; */
  font-size: 12px;
  line-height: 30px;
}

#footer p.red a {
  color: #999999;
}

/* 尾部结束 */



/* 产品列表 start */
.productList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.productList .item {
  padding: 12px;
  background: #fff;
  border-radius: 5px;
  padding-bottom: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.productList .item .image {
  width: 190px;
  height: 190px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.productList .item .title {
  line-height: 21px;
  font-size: 14px;
  height: 42px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.productList .item .money {
  line-height: 27px;
  font-size: 18px;
  color: var(--main-color);
  font-weight: bold;
  padding: 5px 0px;
}

.productList .item .company {
  color: #999999;
  line-height: 18px;
  font-size: 12px;
}

.productList .item .posttion {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24%, #FFFFFF 100%);
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  left: 0;
  top: 30%;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.productList .item:hover .posttion {
  /* height: 100%; */
  top: 0;
  opacity: 1;
}

.productList .item .posttion .flex {
  display: flex;
  justify-content: space-around;
  padding: 0 15px;
  padding-bottom: 20px;
}

.productList .item .posttion .flex div {
  width: 90px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  text-align: center;
  font-size: 12px;
}

.productList .item .posttion .flex .left {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: #fff;
}

.productList .item .posttion .flex .right {
  color: #fff;
  background: var(--main-color);
}

/* .productList .item .flex {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10px;
}

.productList .item .flex .left {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.productList .item .flex .left span {
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 5px;
  background: #ff812a;
  color: #fff;
  margin-bottom: 5px;
} */

.productList .item .flex .contact {
  width: 75px;
  height: 22px;
  line-height: 22px;
  border-radius: 4px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 12px;
  text-align: center;
}

.productList .item .flex .contact>div {
  display: block;
  height: 20px;
  line-height: 20px;
}

.productList .item .flex .contact img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-top: -1px;
  margin-right: 2px;
}

/* 产品列表 END */

/* 分页   start */
div.pagination {
  height: 40px;
  line-height: 40px;
  width: fit-content;
  margin-top: 20px;
  text-align: right;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 60px;
}

ul.pagination {
  display: flex;
}

.pagination li.active span {
  color: #fff;
  background: var(--main-bg-color);
  position: static;
  border-radius: 5px;
  border: 1px solid var(--mian-color);
}

.pagination .active:after {
  content: none;
}

.pagination li span,
.pagination li a {
  display: block;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}

.pagination li,
.pagination li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 5px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  margin: 0 2px;
  cursor: pointer;
  color: #666;
  border-radius: 5px;
  box-sizing: border-box;
}

.pagination li a,
.pagination li.upper a,
.pagination li.lower a,
.pagination li.upper span,
.pagination li.lower span {
  margin: 0;
  box-sizing: border-box;
}

.pagination li.upper,
.pagination li.lower,
.pagination li.upper a,
.pagination li.lower a,
.pagination li.upper span,
.pagination li.lower span {
  width: 76px !important;
  height: 36px;
  border-radius: 5px;
}

.pagination a.jump-btn {
  font-size: 14px;
}

.pagination input {
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid #DFDFDF;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  font-size: 16px;
}

/* 分页   end */


/* 右侧分享  start */



.rightTop {
  width: 62px;
  background: #fff;
  position: fixed;
  right: 0;
  top: 43%;
  padding: 8px;
  z-index: 4;
  box-shadow: 0px 6px 18px 0px rgba(195, 195, 195, 0.5600);
}

.rightTop .item {
  display: block;
  padding: 16px 0px;
  border-top: 1px solid #DEDEDE;
  text-align: center;
  cursor: pointer;
  color: #666666;
}

.rightTop .item.goTop {
  display: none;
}

.rightTop .item:first-child {
  border: none;
}

.rightTop .item span {
  display: block;
  width: 32px;
  font-size: 14px;
  margin: 0 auto;
}

.rightTop .item img {
  display: block;
  width: 19px;
  height: 19px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.rightTop .item img.hover {
  display: none;
}

.rightTop .item:hover {
  color: var(--main-color);
}

.rightTop .item:hover img.hover {
  display: block;
}

.rightTop .item:hover img.nomal {
  display: none;
}

.rightTop .item.share {
  position: relative;
}

.rightTop .item .phoneData-right {
  position: absolute;
  /* left: -160px; */
  right: 70px;
  top: 0;
  bottom: 0px;
  margin: auto;
  width: 135px;
  padding: 12px 13px;
  line-height: 40px;
  text-align: center;
  color: #666666;
  background: #fff;
  border-radius: 10px;
  /* z-index: 21; */
  display: none;
  height: fit-content;
  box-shadow: 0px 6px 18px 0px rgba(195, 195, 195, 0.5600);
  font-size: 14px;
}

.rightTop .item .phoneData-right .items img {
  width: 16px;
  height: fit-content;
  margin: 0 auto;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* .wechats {
  display:none;
} */

.wechats {
  position: relative;
}
.wechats #qrcode {
  position: absolute;
  right: calc(100% + 20px);
  top: -10px;
  padding:10px;
  background: #fff;
  box-shadow: 0px 6px 18px 0px rgba(195, 195, 195, 0.5600);
  display: none;
}
.wechats:hover #qrcode {
  display: block;
} 

.rightTop .item .phoneData-right .items img.hover {
  display: none;
}

.rightTop .item .phoneData-right .items:hover {
  color: var(--main-color);
}

.rightTop .item .phoneData-right .items:hover img.hover {
  display: inline-block;
}

.rightTop .item .phoneData-right .items:hover img.nomal {
  display: none;
}

.rightTop .item .height {
  position: absolute;
  left: -25px;
  top: 0;
  bottom: 0px;
  margin: auto;
  height: 144px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.rightTop .item .d3 {
  display: none;
  width: 0;
  height: 0;
  z-index: -1;
  border-width: 13px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* 右侧分享  end */




/* 个人中心左侧 */
#progress1 {
  /* width: 100%; */
  box-sizing: border-box;
  background: #eee;
  color: #fff;
  border-radius: 20px;
  height: 10px;
  margin: 0 34px;
  box-sizing: border-box;
}

progress::-webkit-progress-bar {
  background: #FFEEEE;
  border-radius: 20px;
  /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15) inset; */
}

progress::-webkit-progress-value {
  background: #BE0022;
  border-radius: 20px;
}

.PersonalCenter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.PersonalCenter .navListUser {
  width: 220px;
  background: #fff;
  padding: 25px 0px;
  position: relative;
  border-radius: 10px;
}

.PersonalCenter .navListUser .bg {
  width: 126px;
  height: 145px;
  position: absolute;
  right: 0;
  bottom: 0;
  /* z-index: -1; */
}

.PersonalCenter .navListUser .item {
  margin-bottom: 20px;
  line-height: 28px;
}

.PersonalCenter .navListUser .item:last-child {
  margin-bottom: 0;
}

.PersonalCenter .navListUser .item a {
  display: inline-block;
  width: 100%;
  padding-left: 34px;
  box-sizing: border-box;
  position: relative;
}

.PersonalCenter .navListUser .item.active a {
  color: var(--main-color);
}

.PersonalCenter .navListUser .item.active a::before {
  content: " ";
  width: 4px;
  height: 28px;
  background: var(--main-bg-color);
  border-radius: 0px 2px 2px 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}



.PersonalCenter .navListUser .item a p {
  position: relative;
  width: fit-content;
}


.PersonalCenter .navListUser .totalunread .tips,
.header .headerBT .infoBox .totalunread .tips,
.PersonalCenter .contain .tabs .item a .tips {
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  right: auto;
  font-size: 12px;
  width: auto;
  padding: 0px 5px;
  left: calc(100% + 3px);
  box-sizing: border-box;
  background: #BE0022;
  position: absolute;
  display: inline-block;
  /* top: -5px; */
}

.PersonalCenter .contain .tabs .item a .tips {
  top: 20%;
}

.PersonalCenter .contain {
  width: calc(100% - 240px);
  background: #fff;
  position: relative;
  background: url(../img/infoBg.png) no-repeat right bottom, #fff;
  background-size: 407px auto;
  min-height: 300px;
}

.PersonalCenter .contain .tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #DEDEDE;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  margin: 0 30px;
}

.PersonalCenter .contain .tabs .item {
  margin-right: 50px;
  cursor: pointer;
  position: relative;
}

.PersonalCenter .contain .tabs .item a {
  display: block;
  width: 100%;
  height: 100%;
}

.PersonalCenter .contain .tabs .item.active {
  color: var(--main-color);
}

.PersonalCenter .contain .tabs .item.active::before {
  content: ' ';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: var(--main-color)
}

.PersonalCenter .contain .tabsCon>.item {
  display: none;
}

.PersonalCenter .contain .tabsCon>.item.active {
  display: block;
}

/* .totalunread .tips {
  display: block !important;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #BE0022;
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
} */



/* 个人中心 结束 */
.none {
  height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  color: #999999;
  width: 100%;
  /* display: none; */
}

.none img {
  width: 148px;
  height: 108px;
  margin: 0 auto;
  display: block;
  margin-bottom: 29px;
}

/* 下拉框 */
.drop-down {
  background: url(../img/31xiala.png) no-repeat right center !important;
  background-position: 100% !important;
  background-size: 10px 10px;
  padding-right: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.select-list {
  background-color: #FFFFFF;
  box-shadow: 0 5px 5px #ccc;
  width: 100%;
  padding: 15px 0px 15px 0px;
  height: 180px;
  overflow-y: auto;
  position: absolute;
  top: 102%;
  left: 0;
  display: none;
  z-index: 1;
  box-sizing: border-box;
}

.selectAct {
  background: var(--main-bg-color);
  color: #fff !important;
}

.select-list .select-flex,
.checkout .checkSelect-list .select-flex {
  padding: 4px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 21px;
}

.select-list .select-flex p,
.checkout .checkSelect-list .select-flex p {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 5px 0px;
  font-size: 14px;
  line-height: 20px;
}

.select-list::-webkit-scrollbar,
.checkout .checkSelect-list::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.select-list::-webkit-scrollbar-thumb,
.checkout .checkSelect-list::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #BE0022;
}

.select-list::-webkit-scrollbar-track-piece,
.checkout .checkSelect-list::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

/* 多选 */
.checkout {
  padding: 0;
  background-color: #FFFFFF;
  box-shadow: 0 5px 5px #ccc;
  width: 100%;
  height: 180px;
  z-index: 1;
  box-sizing: border-box;
  position: absolute;
  display: none;
  top: 102%;
  left: 0;
}

.checkout .checkSelect-list {
  padding: 15px 0px 15px 0px;
  height: calc(100% - 44px);
  box-sizing: border-box;
  overflow-y: auto;
  width: 100%;
}

.checkout .que {
  width: 100%;
  background: #BE0022;
  color: #ffffff;
  cursor: pointer;
  height: 44px;
  line-height: 44px;
  text-align: center;
}

.checkout input[type=checkbox] {
  outline: none;
  cursor: pointer;
  position: relative;
  width: 16px !important;
  height: 16px !important;
  font-size: 14px !important;
  margin-right: 8px !important;
  box-sizing: border-box;
}

.checkout input[type=checkbox]:checked::after {
  background: url(/index_static/img/checkbox.png), #BE0022;
  border: 1px solid #BE0022;
  background-size: 100%;

}

.checkout input[type=checkbox]::after {
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  border: 1px solid #aaaaaa;
  color: #fff;
  width: 16px;
  height: 16px;
  line-height: 18px;
  display: inline-block;
  visibility: visible;
  text-align: center;
  content: ' ';
  box-sizing: border-box;
}

.checkSelect-list .selectAct {
  background: #FFFFFF;
  color: #BE0022 !important;
}

.checkout input[type=checkbox]:checked::after {
  background: url(../img/checkbox.png), #BE0022;
  border: 1px solid #BE0022;
  background-size: 100%;
}




/* 公共弹窗 - 反馈表单 */
.mio-modal-mask-Com {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  display: none;
}

.mio-modal-mask-Com .pop {
  width: 908px;
  background: #FFFFFF;
  z-index: 999;
  padding: 0 0px 25px;
  border-radius: 5px;
  position: absolute;
  max-height: 80%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mio-modal-mask-Com .pop .pop-guan {
  text-align: right;
  margin-right: 20px;
  /* padding: 15px; */
  padding: 0px;
  padding-top: 10px;
}

.mio-modal-mask-Com .pop .pop-guan img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.mio-modal-mask-Com .pop .pop-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  padding: 0;
  margin-bottom: 15px;
}


.mio-modal-mask-Com .pop .pop-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.mio-modal-mask-Com .pop .pop-flex>div {
  /* width: calc(50% - 5px); */
}

.mio-modal-mask-Com .pop form {
  height: calc(100% - 70px);
  overflow-y: scroll;
  padding: 0 10px;
}

.mio-modal-mask-Com .pop input {
  width: 270px;
  border-radius: 5px;
  height: 46px;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  font-size: 16px;
}

.mio-modal-mask-Com .pop div {
  padding: 10px 0;
}

.mio-modal-mask-Com .pop div.uploadFileName {
  padding: 0 10px;
}

.mio-modal-mask-Com .pop .pop-text {
  border-radius: 5px;
  /* width: 689px; */
  height: 130px;
  padding: 10px;
  border: 1px solid #EEEEEE;
  vertical-align: top;
  font-size: 16px;
  flex: 1;
}

/* .mio-modal-mask-Com .pop .pop-file {
    width: 201px;
    height: 161px;
    background: #FFFFFF;
    border: 1px solid #DFDFDF;
    vertical-align: top;
    border-radius: 5px;
    background: url(/index_static/img/jia.png)no-repeat center;
  } */
.mio-modal-mask-Com .pop .enclosure {
  display: flex;
}

.mio-modal-mask-Com .pop .enclosure .bx .chooseFile {
  border: 1px solid #BCBBBB;
  width: 173px;
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
  text-align: center;
  padding: 0;
  color: #666666;
  font-size: 16px;
  margin: 0 auto;
  /* margin-top: 20px; */
  margin-bottom: 10px;
  cursor: pointer;
}

.mio-modal-mask-Com .pop .enclosure .bx .gerf {
  font-size: 14px;
  color: #999999;
}

.mio-modal-mask-Com .pop .enclosure-img {
  /* width: 689px; */
  height: 170px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 15px;
  /* box-sizing: content-box; */
}

.mio-modal-mask-Com .pop .enclosure-img img {
  width: 51px;
  height: 41px;
  margin: 0 auto;
  display: inline-block;
}

.mio-modal-mask-Com .pop .bx {
  padding: 0;
}

.mio-modal-mask-Com .pop label {
  display: inline-block;
  width: 104px;
  text-align: right;
  /* padding-right: 5px; */
  /* height: 30px; */
  /* line-height: 30px; */
  vertical-align: middle;
  text-align: justify;
  /* text-align-last: justify; */
  text-align-last: auto;
}

.mio-modal-mask-Com .pop label span {
  color: var(--main-color);
}

.mio-modal-mask-Com .pop .pop-flex div:first-child label {
  width: 65px;
  text-align: right;
}

.mio-modal-mask-Com .pop .pop-flex label {
  margin-right: 20px;
  text-align: right;
}

.mio-modal-mask-Com .pop .pop-flex>div {
  display: flex;
  align-items: center;
}

.mio-modal-mask-Com .pop .pop-flex:nth-last-child(-1n+3)>div {
  align-items: flex-start;
  width: 100%;
}

.mio-modal-mask-Com .pop .pop-flex>div.enclosure>div {
  flex: 1;
}

/* .mio-modal-mask-Com .pop .pop-flex>div:last-child label {
    width: 70px;
  } */

.mio-modal-mask-Com .pop .pop-sub {
  text-align: center;
  cursor: pointer;
  /* margin-top: 20px; */
  width: 610px;
  /* height: 46px; */
  background: #BE0022;
  border-radius: 23px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
}

.mio-modal-mask-Com .pop .pop-sub button {}

.mio-modal-mask-Com .pop form::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

.mio-modal-mask-Com .pop form::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #BE0022;
}

.mio-modal-mask-Com .pop form::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.mio-modal-mask-Com .uploadFileName {
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  background: #F9F9F9;
  margin-bottom: 10px;
  /* pointer-events: none; */
}

.mio-modal-mask-Com .uploadFileName span {
  display: block;
  width: calc(100% - 50px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666666;
  font-size: 14px;
}

.mio-modal-mask-Com .uploadFileName::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  background: url(../img/fujian.png);
  background-size: cover;
}

.mio-modal-mask-Com .uploadFileName::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/del1.png);
  background-size: cover;
  cursor: pointer;
  /* pointer-events: auto; */
}


/* 二级导航 */
.header .downLIne {
  border-bottom: 2px solid var(--main-color);
}

.header .navBox .typp {

  position: relative;
}

.header .navBox .typp:hover .twoNavList {
  display: block;
}

.header .navBox .twoNavList {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;

}

.bannerBox .first .position {
  width: 100%;
  position: relative;
}

.header .navBox .twoNavList .left {
  width: 236px;
  height: 480px;
  /* background: url("../img/imgbg.png") #fff; */
  /* opacity: 0.75; */
  background: rgba(0, 0, 0, 0.75);
  pointer-events: auto;
  overflow-y: scroll;
  direction: rtl;
}

.header .navBox .twoNavList .left::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.75);
}

.header .navBox .twoNavList .left::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #BE0022;
}

.header .navBox .twoNavList .left::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.header .navBox .twoNavList .left>.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* margin: 0px 13px; */
  /* position: relative; */
  direction: ltr;
}

.header .navBox .twoNavList .left>.list>.item {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
}

.header .navBox .twoNavList .left>.list>.item>div:first-child {
  border-bottom: 1px dashed rgba(235, 235, 235, 0.75);
  margin-right: 13px;
}

.header .navBox .twoNavList .left>.list>.item>div:first-child a {
  display: block;
  padding: 22px 0px;
}

.header .navBox .twoNavList .left>.list>.item:nth-child(2n - 1)>div:first-child {
  border-right: 1px dashed rgba(235, 235, 235, 0.75);
  margin-right: 0px;
  margin-left: 13px;
}


.header .navBox .twoNavList .left>.list.one>.item:last-child>div:first-child {
  border-bottom: none;
}

.header .navBox .twoNavList .left>.list.two>.item:nth-last-child(-n+2)>div:first-child {
  border-bottom: none;
}

/* .header .navBox .twoNavList .left>.list>.item:nth-child(2n) {
  border-left: 1px dashed rgba(235,235,235,0.75);
} */

.header .navBox .twoNavList .left>.list>.item>div>a>img {
  width: 20px;
  height: 19px;
  margin: 0 auto;
  display: block;
  margin-bottom: 13px;
}

.header .navBox .twoNavList .left .list .item .secondary {
  display: none;
  position: absolute;
  background: #fff;
  width: 800px;
  height: 480px;
  left: 100%;
  top: 0;
  z-index: 11;
  padding: 42px 20px;
  overflow-y: auto;
  border: 1px solid var(--main-color);
}


.header .navBox .twoNavList .left .list .item:nth-child(even) .secondary {
  width: 757px;
}

.header .navBox .twoNavList .left .list .item:nth-child(odd) .secondary {
  width: 875px;
}

@media screen and (max-width: 1400px) {
  .header .navBox .twoNavList .left .list .item:nth-child(even) .secondary {
    width: 678px;
  }

  .header .navBox .twoNavList .left .list .item:nth-child(odd) .secondary {
    width: 796px;
  }
}

.header .navBox .twoNavList .left .list .item .secondary::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

.header .navBox .twoNavList .left .list .item .secondary::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #BE0022;
}

.header .navBox .twoNavList .left .list .item .secondary::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.header .navBox .twoNavList .left .list .item:nth-child(2n) .secondary {
  left: 100%;
}

.header .navBox .twoNavList .left .list .item:nth-child(2n -1) .secondary {
  left: 50%;
}

.header .navBox .twoNavList .left>.list>.item:hover>div {
  color: rgba(255, 255, 255, 1);
}

.header .navBox .twoNavList .left .list .item:hover .secondary {
  display: block;
}

.header .navBox .twoNavList .left .list .item .secondary .list {
  display: grid;
  grid-template-columns: repeat(5, 126px);
  gap: 65px 30px;
}

.header .navBox .twoNavList .left .list .item:nth-child(even) .secondary .list {
  grid-template-columns: repeat(4, 126px);
}

.header .navBox .twoNavList .left .list .item .secondary .list .item img {
  width: 126px;
  height: 47px;
}

.header .navBox .twoNavList .left .list .item .secondary .list .item {
  font-size: 14px;
  color: #666666;
  text-align: center;
  cursor: pointer;
}

.header .navBox .twoNavList .left .list .item .secondary .list .item:hover {
  color: var(--main-color);
}


.warnBox,
.jiansheBg {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  position: fixed;
  display: none;
}

.warnBox .warn,
.jiansheBg .jiansheBox {
  width: 480px;
  background: #FFFFFF;
  z-index: 999;
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  padding-bottom: 20px;
}

.warnBox .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #EBEBEB;
}

.warnBox .title h4 {
  font-size: 16px;
  font-weight: bolder;
}

.warnBox .warn .close,
.jiansheBg .jiansheBox .close {
  text-align: right;
  opacity: 1;
  /* margin-right: 20px; */
  /* padding: 15px; */
  /*  padding: 0px;
  padding-top: 10px; */
}

.jiansheBg .jiansheBox .close {
  padding: 16px;
}


.warnBox .warn .close img,
.jiansheBg .jiansheBox .close img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.warnBox .warn .content {
  font-size: 16px;
  /* text-align: center; */
  padding: 15px;
  color: #666;
}

.warnBox .warn .content img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.warnBox .warn .flex {
  display: flex;
  justify-content: flex-end;
  /* padding: 0 95px; */
  padding: 15px;
  margin-top: 30px;
}

.warnBox .warn .flex>div {
  min-width: 100px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 0 10px;
}

.warnBox .warn .flex>div a {
  display: block;
  width: 100%;
}

.warnBox .warn .flex>div:last-child {
  background: var(--main-color);
  color: #fff;
  margin-left: 15px;
}


.feedWarnBox .chinese,
.loginWarnBox .chinese,
.VIPWarnBox .chinese {
  display: block;
}

.feedWarnBox .al,
.feedWarnBox .en,
.loginWarnBox .al,
.loginWarnBox .en,
.VIPWarnBox .al,
.VIPWarnBox .en {
  display: none;
}

.jiansheBg .jiansheBox {
  text-align: center;
}

.jiansheBg .jiansheBox .icon {
  width: 176px;
  height: 158px;
  margin: 0 auto;
}

.jiansheBg .jiansheBox p {
  font-size: 18px;
  color: #333333;
  line-height: 26px;
}

.jiansheBg .jiansheBox .jiansheButton {
  width: 98px;
  height: 29px;
  line-height: 29px;
  border-radius: 4px;
  background: #FA928A;
  cursor: pointer;
  margin: 0 auto;
  color: #fff;
  margin-top: 23px;
  margin-bottom: 30px;
}


/* 微信分享二维码 */
.wx-qrcode-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 111;
  display: none;
}

.wx-qrcode-wrapper .mask {
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  border: none;
  display: block;
  position: initial;
  opacity: 1;
}

.wx-qrcode-wrapper .wx-qrcode {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: fit-content;
  height: fit-content;
  padding: 10px;
}

.wx-qrcode-wrapper .wx-qrcode h4 {
  display: flex;
  margin: 0;
  padding-bottom: 10px;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bolder;
}

.wx-qrcode-wrapper .icon-close2 {
  width: 20px;
  height: 20px;
  display: block;
}

.wx-qrcode-wrapper .qrcode_msg {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}